Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632829 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/154 - Word For Alphabet Speak Aloud

style.css cody/swapnilsparsh/30DaysOfJavaScript/154 - Word For Alphabet Speak Aloud/style.css
90 Views
0 Comments
html {
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
-webkit-transition: all ease 0.3s;
transition: all ease 0.3s;
}
index.html cody/swapnilsparsh/30DaysOfJavaScript/154 - Word For Alphabet Speak Aloud/index.html
286 Views
0 Comments
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Alphabets Word Pronounce</title>
<link rel="stylesheet" href="./style.css">

</head>
script.js cody/swapnilsparsh/30DaysOfJavaScript/154 - Word For Alphabet Speak Aloud/script.js
109 Views
0 Comments
// Declaring stuff
myName = ""; // declaring a variable for my easter egg
audioPlayer = document.getElementsByTagName('audio')[0];

// ------ Functions ------
// Getting the letter sound and playing it.
function setLetterSound(letterVariable) {
var mp3Source = document.getElementById('mp3Source');